:root {
  /* Fonte Size */
  --font-increase: 40%;
  --title-font-size: 42px;
  --container-p-font-size: 14px;
  --link-menu-font-size: 18px;
  --button-font-size: 18px;
  --card-post-font-size: 16px;
  --tag-category-font-size: 14px;
  --titulo-noticia-font-size: 23px;
  --list-categories-font-size: 18px;
  --newsletter-content-font-size: 18px;
  --custom-footer-display-font-size: 14px;
  --author-date-font-size: 14px;
  --post-full-content-font-size: 48px;
  --post-info-font-size: 16px;
  --post-content-font-size: 22px;
  --post-content-heading-font-size: 32px;
  --rating-star-span-font-size: 16px;
  --tag-categories-font-size: 14px;
  --drop-itens-font-size: 16px;
  --title-font-size-mobile: 32px;
  --post-content-font-size-mobile: 18px;
  --post-content-heading-font-size-mobile: 24px;
  --copy-fot-font-size-mobile: 18px;

  --primary-bg-color: #cc0000;
  --secondary-bg-color: #444444;
  /* --color-text: #fff; */
  --dark-bg-color: #000000;
  --medium-bg-color: #222222;
  --light-bg-color: #111111;
  --cc-bg-color: #cccccc;
  --99-bg-color: #999999;

  /* Tema padrão (claro) */
  --color-text: #222222;
  --color-medium: #444444;
  --color-primary: #cc0000;
  --color-secondary: #ffffff;
  --color-negative-primary: #ffffff;
  --color-negative-secondary: #cc0000;
  --color-background-medium: #f5f9fb;

  --color-button-hover-primary: #990000;
  --color-button-hover-secondary: #fde5e5;
  --color-button-hover-negative-primary: #fde5e5;
  --color-button-hover-negative-secondary: #990000;

  --color-background-header: #cc0000;
  --color-scroll-progress-header: #990000;

  --color-tag-categories: #cccccc;

  --color-background-footer: #222222;
  --color-line-footer: #dddddd;

  --color-border-line: #cccccc;

  --color-border-modal: #cedee7;
}

:root .contrast {
  /* Modo de contraste elevado */
  --color-text: #f8e71c;
  --color-medium: #f8e71c;
  --color-primary: #f8e71c;
  --color-secondary: #000000;
  --color-negative-primary: #f8e71c;
  --color-negative-secondary: #000000;
  --color-background-medium: #111111;

  --color-button-hover-primary: #f8e71c;
  --color-button-hover-secondary: #000000;
  --color-button-hover-negative-primary: #f8e71c;
  --color-button-hover-negative-secondary: #000000;

  /* header */
  --color-background-header: #111111;
  --color-scroll-progress-header: #f8e71c;

  --color-tag-categories: #f8e71c;

  --color-background-footer: #000000;
  --color-line-footer: #f8e71c;

  --color-border-line: #f8e71c;

  --color-border-modal: #f8e71c;
}

:root .black-white {
  /* Modo de contraste elevado */
  --color-text: #ffffff;
  --color-medium: #ffffff;
  --color-primary: #ffffff;
  --color-secondary: #000000;
  --color-negative-primary: #ffffff;
  --color-negative-secondary: #000000;
  --color-background-medium: #111111;

  --color-button-hover-primary: #ffffff;
  --color-button-hover-secondary: #000000;
  --color-button-hover-negative-primary: #ffffff;
  --color-button-hover-negative-secondary: #000000;

  /* header */
  --color-background-header: #111111;
  --color-scroll-progress-header: #ffffff;

  --color-tag-categories: #ffffff;

  --color-background-footer: #000000;
  --color-line-footer: #ffffff;

  --color-border-line: #ffffff;

  --color-border-modal: #ffffff;
}

/* bootstrap refactor */

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

a {
  text-decoration: underline;
}

/* end bootstrap refactor */

body {
  font-family: var(--font-family, Arial, sans-serif);
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.footer {
  background: var(--color-background-footer);
  color: var(--color-text);
  padding: 20px 0;
  width: 100%;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}

.footer__section {
  flex: 1;
  margin: 10px;
  min-width: 200px;
  position: relative;
}

.footer__section::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--color-line-footer);
  position: absolute;
  bottom: -10px;
}

.footer__section:last-of-type::after {
  display: none;
}

.footer__title {
  font-size: var(--font-size-title, 18px);
  margin-bottom: 10px;
  background: none;
  border: none;
  color: var(--color-negative-primary);
  text-align: left;
  width: 100%;
  cursor: pointer;
  padding: 0;
  font-weight: 400;
}

.footer__list {
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.footer__item {
  margin-bottom: 8px;
}

.footer__link {
  color: var(--color-border-line);
  text-decoration: none;
  font-size: var(--font-size-link, 14px);
}

.footer__link:hover {
  text-decoration: underline;
  color: #fff;
}

.footer__section--social-app-container {
  width: 100%;
}

.footer__social-icons {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  transition: max-height 0.3s ease;
}

.footer__social-link {
  margin-right: 10px;
}

.footer__social-icon {
  width: 32px;
  height: 32px;
}

.footer__legal {
  padding: 10px 0;
  margin: 20px 16px 0 16px;
  font-size: var(--font-size-legal, 16px);
  line-height: var(--line-height-legal, 32px);
  border-top: 1px solid var(--color-border-line);
}

.footer__legal-text {
  margin: 5px 0;
  color: var(--color-negative-primary);
}

.footer__legal-links {
  margin-top: 10px;
  color: var(--color-negative-primary);
}

.footer__legal-link {
  color: var(--color-negative-primary);
  text-decoration: underline;
}

.footer__legal-link:hover {
  text-decoration: underline;
  color: #fff;
}

.footer__app-link {
  text-decoration: none;
}

.footer__app-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__social-title {
  margin: 0 0 24px 0;
}

/* Estilo para versões de desktop */
@media (min-width: 768px) {
  .footer__section--social-app-container {
    flex: 1;
  }

  .footer__list {
    max-height: none;
  }

  .footer__section::after {
    display: none;
  }

  .footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: -webkit-fill-available;
  }

  .footer__legal-links {
    margin-top: 0;
    display: flex;
  }

  .footer__legal-link {
    margin-right: 5px;
  }
}

.form-control {
  max-width: 220px;
  width: 100%;
}

@media (max-width: 768px) {
  .form-control {
    max-width: 100%;
  }
}

#solucoes div:first-child,
#updown-image {
  align-self: center;
}

.h-icon-tray h3 {
  font-weight: 600;
}

.duvidas_frequentes a,
.f-red,
.old-footer .links a {
  text-decoration: underline;
}

@font-face {
  font-family: SantanderHeadline;
  src:
    local(SantanderHeadline-Bold),
    url(https://www.santander.com.br/sites/WPC_Banco/assets/fonts/fontes_woff2/SantanderHeadlineW05-Bold.woff2)
      format('woff2');
  /* src:
    local(SantanderHeadline-Bold),
    url(../fonts/SantanderHeadlineW05-Bold.woff2) format('woff'); */
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

@font-face {
  font-family: SantanderMicroText;
  src:
    local(SantanderMicroText),
    url(https://www.santander.com.br/sites/WPC_Banco/assets/fonts/fontes_woff2/SantanderMicroTextW05-Rg.woff2)
      format('woff2');
  /* src:
    local(SantanderMicroText),
    url(../fonts/SantanderMicroTextW05-Rg.woff2) format('woff2'); */
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

@font-face {
  font-family: SantanderHeadlineRegular;
  src:
    local(SantanderHeadline-Regular),
    url(https://www.santander.com.br/sites/WPC_Banco/assets/fonts/fontes_woff2/SantanderHeadlineW05-Rg.woff2)
      format('woff2');
  /* src:
    local(SantanderHeadline-Regular),
    url(../fonts/SantanderHeadlineW05-Rg.woff2) format('woff2'); */
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

@font-face {
  font-family: SantanderTextRegular;
  src:
    local(SantanderText-Regular),
    url(https://www.santander.com.br/sites/WPC_Banco/assets/fonts/fontes_woff2/SantanderTextW05-Regular.woff2)
      format('woff2');
  /* src:
    local(SantanderText-Regular),
    url(../fonts/SantanderTextW05-Regular.woff2) format('woff2'); */
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

@font-face {
  font-family: SantanderTextBold;
  src:
    local(SantanderText-Bold),
    url(https://www.santander.com.br/sites/WPC_Banco/assets/fonts/fontes_woff2/SantanderTextW05-Bold.woff2)
      format('woff2');
  /* src:
    local(SantanderText-Bold),
    url(../fonts/SantanderTextW05-Bold.woff2) format('woff2'); */
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

@font-face {
  font-family: SantanderTextLight;
  src:
    local(SantanderText-Light),
    url(https://www.santander.com.br/sites/WPC_Banco/assets/fonts/fontes_woff2/SantanderTextW05-Light.woff2)
      format('woff2');
  /* src:
    local(SantanderText-Light),
    url(../fonts/SantanderTextW05-Light.woff2) format('woff2'); */
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: SantanderHeadlineRegular, sans-serif;
}

ul {
  list-style: none;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.p-75 {
  width: 75%;
}

.p-90 {
  width: 90%;
}

.section-title {
  margin: 2rem 0;
  font-size: 1.4rem;
}

.f-white {
  color: #fff;
}

.f-red {
  color: #cd0000 !important;
}

.banner_conteudo,
.flex,
.h-icon-tray {
  display: flex;
}

.p-20 {
  padding: 20px 0 2px 20px;
}

body,
html {
  max-width: 100vw;
  overflow-x: hidden !important;
}

header {
  height: 5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

header a {
  margin: 0 1rem;
}

header a img {
  width: 200px;
  height: auto !important;
}

#banner-img img {
  width: 540px;
  height: 300px;
  right: 21%;
  position: absolute;
  top: 15%;
}

#main-title {
  font-size: 1.7rem;
  margin-bottom: 3rem;
}

#updown-image {
  transform: translateY(-5%);
}

#updown-image img {
  width: 200px;
  height: 100%;
}

#updown-image img:nth-child(2) {
  transform: translate(10px, 10%);
}

.h-icon-tray h3 {
  font-size: 1.2rem;
}

.h-icon-tray p {
  font-size: 1.1rem;
}

@media screen and (max-width: 431px) {
  .h-icon-tray p {
    max-width: 210px;
  }
}

.h-icon-tray img {
  width: 40px;
  height: 40px;
  margin: 0 10px 10px;
}

.h-icon-tray {
  background-color: #fbfbfb;
  border-radius: 8px;
  margin: 12px 0px;
  padding: 12px;
}

.svg-icon {
  height: 30px;
  width: 100px;
  margin: 10px;
  transform: translateY(-0.5rem);
}

@media (max-width: 1200px) {
  .accent-button,
  .red-button {
    width: 10rem;
  }

  #updown-image img:first-child {
    transform: translate(0, -2%);
    width: 48%;
    height: 100%;
  }

  #updown-image img:nth-child(2) {
    transform: translate(10px, 12%);
    width: 48%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  #updown-image img:first-child {
    transform: translate(0, -5%);
  }

  #updown-image img:nth-child(2) {
    transform: translate(10px, 25%);
  }

  #main-title {
    transform: translateX(-75%);
    font-size: 1.5rem;
  }
}

#red-bg {
  height: 400px;
}

#passo-a-passo {
  margin-top: 2rem;
}

.passo-a-passo__container {
  padding-bottom: 2rem;
}

#passo-a-passo h2 {
  margin-bottom: 4rem;
  margin-top: 80px;
}

#passo-a-passo .passo-a-passo__y-card {
  background-color: #deedf2;
  height: 280px;
  border-radius: 4px;
  max-width: 250px;
  box-shadow: 1px 1px 4px #00000040;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
}

.y-card-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 52px;
  width: 52px;
  background-color: #cc0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
}

#passo-a-passo .card-txt {
  font-size: 1rem;
  color: #222;
  text-align: left;
  padding: 0px 24px;
}

#passo-a-passo .card-image_passo-a-passo {
  position: absolute;
  bottom: 0px;
  height: 150px;
  background-color: transparent;
  padding: 0px;
}

@media screen and (max-width: 769px) {
  #passo-a-passo .card-image_passo-a-passo {
    height: 100px;
  }
}

@media screen and (max-width: 769px) {
  #passo-a-passo .card-image_passo-a-passo {
    height: 100px;
    left: 28px;
  }

  .y-card-number {
    left: 0px;
    top: 50%;
  }

  #passo-a-passo .passo-a-passo__y-card {
    height: 140px;
    margin-bottom: 24px;
    max-width: 80%;
    flex-direction: row;
    justify-content: flex-end;
    padding-top: 0px;
  }

  #passo-a-passo .card-txt {
    width: 60%;
    padding: 0px 18px;
    font-size: 12px;
  }

  .passo-a-passo__title__container {
    display: flex;
    justify-content: center;
  }

  .passo-a-passo__title {
    font-size: 32px;
  }

  #passo-a-passo .card-image_passo-a-passo__step4 {
    left: -4px;
    height: 85px;
  }
}

@media only screen and (max-width: 321px) {
  #passo-a-passo .card-image_passo-a-passo {
    height: 70px;
  }
}

.getnet__container {
  width: 100%;
  padding: 12px 204px 32px 204px;
}

.getnet__title {
  margin: 24px 0px;
  padding-top: 4rem;
}

.getnet__title__mobile {
  display: none;
}

.getnet__content {
  display: flex;
  align-items: start;
  justify-content: center;
  width: 100%;
  padding: 0px 12px;
}

.getnet__info {
  width: 60%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 16px;
}

.getnet__info__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.getnet__img {
  width: 30%;
}

@media only screen and (max-width: 1025px) {
  .getnet__container {
    padding: 12px 0px 32px 0px;
  }

  .getnet__title {
    margin: 24px 42px;
  }

  .getnet__content {
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
    padding: 0px 12px;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .getnet__img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 431px) {
  .getnet__title {
    display: none;
  }

  .getnet__title__mobile {
    display: block;
    margin: 24px 12px;
  }

  .getnet__content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
  }

  .getnet__img {
    width: 90%;
    display: flex;
    justify-content: center;
  }

  .getnet__info {
    width: 100%;
  }
}

.mei__container {
  width: 100%;
  padding: 6rem 204px 32px 204px;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.mei__picture {
  width: 35%;
  display: flex;
  justify-content: center;
}

.mei__img {
  width: 100%;
  object-fit: cover;
}

@media (min-width: 769px) {
  .mei__img {
    max-width: 491px;
    height: 518.8px;
  }
}

.mei__info {
  width: 70%;
  color: #222222;
}

.mei__info h3 {
  font-size: 24px;
}

.mei__info p {
  font-size: 18px;
}

.mei__info__items {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mei__info__items_desktop {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.mei__info__item_desktop {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: start;
  gap: 12px;
  padding: 12px 0px;
}

.mei__info__item_desktop span {
  font-size: 15px;
}

.mei__info__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: start;
  gap: 4px;
  height: 150px;
  padding: 12px 0px;
}

.mei__info__item span {
  font-size: 15px;
}

.mei__info__title__mobile {
  display: none;
}

@media screen and (max-width: 1025px) {
  .mei__container {
    padding: 32px 24px;
  }
}

.mei__info__items.swiper {
  display: none;
}

@media screen and (max-width: 769px) {
  .mei__info__items_desktop {
    display: none;
  }

  .mei__container {
    width: 100%;
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    align-items: center;
  }

  .mei__info__items {
    align-items: center;
  }

  .mei__info__item {
    display: flex !important;
    justify-content: center;
    margin: 0 auto;
    width: 85%;
    flex-direction: row;
    align-items: center;
    background: #fff;
    padding: 1rem;
    height: 150px;
  }

  .mei__picture {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mei__img {
    width: 100%;
    object-fit: cover;
  }

  .mei__info {
    width: 100%;
    color: #222222;
  }

  .getnet__title {
    display: none;
  }

  .mei__info__items .custom-slider {
    position: relative;
  }

  /* swiper slider */
  .mei__info__items.swiper {
    display: block;
    height: 200px;
  }

  #mei-swiper-pagination {
    bottom: 0px;
  }

  .mei__info .swiper-pagination-bullet {
    background-color: #999;
    width: 10px;
    height: 10px;
    opacity: 0.55;
    -moz-opacity: 0.55;
    margin: 10px !important;
  }

  .mei__info .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #c00;
    opacity: 1;
  }

  .mei__info .swiper-button-prev,
  .mei__info .swiper-button-next {
    top: 175px !important;
  }
  .mei__info .swiper-button-prev {
    left: 100px;
  }
  .mei__info .swiper-button-next {
    right: 100px;
  }

  .mei__info .swiper-button-prev:after,
  .mei__info .swiper-button-next:after {
    font-size: 22px;
    font-weight: 700;
    color: #121313;
  }
}

@media screen and (max-width: 431px) {
  .mei__container {
    flex-direction: column;
  }

  .mei__img {
    width: 100%;
  }

  .mei__info {
    align-self: center;
    width: 100%;
  }

  .mei__info__title__mobile {
    display: block;
    font-size: 28px;
  }

  .mei__info h3,
  .mei__info p {
    display: none;
  }

  .mei__info__items {
    width: 100%;
    /* gap: 10px; */
  }

  .mei__info__item {
    height: 100px;
    width: 100%;
    gap: 18px;
  }

  .mei__info__item img {
    width: 10%;
  }

  .mei__info__item span {
    word-spacing: 6px !important;
    font-size: 12px;
    width: 90%;
  }

  /* swiper slider */
  .mei__info__items.swiper {
    height: 150px;
  }

  #mei-swiper-pagination {
    bottom: 0px;
  }

  .mei__info .swiper-button-prev,
  .mei__info .swiper-button-next {
    top: 128px !important;
  }

  .mei__info .swiper-button-prev {
    left: 27px;
  }

  .mei__info .swiper-button-next {
    right: 27px;
  }
}

.saiba_mais {
  width: 100%;
  padding: 80px 204px 32px 204px;
  background: linear-gradient(
    to bottom,
    #f0f0f0 0%,
    #ffffff 40%,
    transparent 50%
  );
  margin-bottom: 24px;
  gap: 24px;
}

.saiba_mais__title__container {
  margin-top: 2rem;
}

.saiba_mais_pdfs_cta_container {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.saiba_mais_pdfs_cta_item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 120px;
  padding: 24px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  width: 25%;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: #444444;
}

.saiba_mais_pdfs_cta_item:hover {
  color: #444444;
  text-decoration: none;
}

.saiba_mais_pdfs_cta_item_icon {
  color: #cccccc;
  position: absolute;
  bottom: 12px;
  right: 18px;
}

.saiba_mais_pdfs_cta_item:hover {
  border: 1px solid #cc0000;
  transition: ease-in-out 200ms;
}

.saiba_mais_pdfs_cta_item:hover .saiba_mais_pdfs_cta_item_icon {
  color: #cc0000;
  transition: ease-in-out 200ms;
}

@media screen and (max-width: 1025px) {
  .saiba_mais_pdfs_cta_container {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 769px) {
  .saiba_mais {
    padding: 32px 24px 32px 24px;
  }

  .saiba_mais_pdfs_cta_container {
    gap: 4px;
  }

  .saiba_mais_pdfs_cta_item {
    width: 48%;
  }
}

@media screen and (max-width: 431px) {
  .saiba_mais_pdfs_cta_container {
    gap: 4px;
  }

  .saiba_mais_pdfs_cta_item {
    width: 48%;
  }
}

@media screen and (max-width: 431px) {
  .outros_servicos__title {
    max-width: 330px;
    display: flex;
    margin: 0 auto;
  }
}

#linear-bg {
  background: linear-gradient(180deg, #dfdfdf, transparent);
}

#pacotes-servicos-santander-pj {
  margin-top: 64px;
  margin-bottom: 48px;
}

.service_packages__title {
  margin: 24px 0px;
}

.service_packages__container {
  width: 100%;
  min-height: 150px;
}

.service_packages__item {
  height: 100%;
  width: 280px !important;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 16px;
}

.service_packages__item__title {
  display: flex;
  align-items: center;
  color: #cc0000;
  font-weight: 700;
  gap: 8px;
}

.service_packages__item__description {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 24px;
  min-height: 75px;
}

.service_packages__item__price {
  font-size: 24px;
  margin-bottom: 24px;
}

.service_packages__item__free_label {
  font-size: 12px;
  background-color: #739e41;
  width: fit-content;
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 8px;
}

.service_packages__item__label {
  font-size: 14px;
  color: #444444;
  font-weight: 400;
}

.service_packages__item__learn_more_link {
  text-decoration: underline;
  font-size: 12px;
  color: #444444;
}

.service_packages__item__learn_more_link:hover {
  text-decoration: none;
  cursor: pointer;
  color: #cc0000;
  transition: 200ms ease-in-out;
}

.service_packages__item__divider {
  width: 100%;
  display: flex;
  align-self: center;
  height: 1px;
  background-color: #cccccc;
  margin-top: 12px;
}

.service_packages__item__details__accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  align-items: center;
  padding: 12px 12px 0px 12px;
  text-decoration: underline;
}

.service_packages__item__details__accordion
  .service_packages__item__details__accordion__header {
  cursor: pointer;
  position: relative;
}

.service_packages__item__details__accordion:hover {
  text-decoration: none;
}

.service_packages__item__details__accordion__header:first-child {
  position: relative;
}

.service_packages__item__details__accordion__header::after,
.service_packages__item__details__accordion__header::before {
  height: 24px;
  width: 24px;
  content: '';
  position: absolute;
  transition: 0.2s;
  transform: rotate(180deg);
}

.service_packages__item__details__accordion__header::after {
  left: 70px;
  top: 0;
  background: url('https://www.santander.com.br/sites/WPC_Banco/assets/images/sx-pf/ic-small-arrow-top.png');
  cursor: pointer;
}

.service_packages__item__details__accordion__header.active::after,
.service_packages__item__details__accordion__header.active::before {
  transform: rotate(0);
  top: 2px;
}

.service_packages__item__details__accordion__header::before {
  right: 10px;
  top: 2px;
}

.service_packages__item__details__accordion__content {
  margin-top: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.service_packages__item__details__accordion__content__item {
  padding-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service_packages__item__details__accordion__content b {
  color: #444444;
  font-size: 14px;
}

#benefits-package {
  background-color: #f5f9fb;
  width: 100%;
  padding: 12px 204px 32px 204px;
}

.benefits-package__title {
  margin: 24px 0px;
  display: block;
}

.benefits-package__title__mobile {
  display: none;
}

.benefits-package__content {
  display: flex;
  gap: 24px;
  height: fit-content;
}

.benefits-package__info {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-height: fit-content;
}

.benefits-package__info__item {
  max-width: 70%;
}

.benefits-package__info__item__title {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.benefits-package__info__item__title img {
  height: 32px;
  width: 32px;
  margin: 8px 0px;
}

.benefits-package__info__item__title span {
  font-weight: bold;
}

.benefits-package__info__item p {
  margin-top: 12px;
  text-align: left;
  font-size: 14px;
}

.benefits-package__img {
  margin-top: 4px;
  width: 50%;
}

.benefits-package__img img {
  height: 500px;
}

@media only screen and (max-width: 1025px) {
  #benefits-package {
    background-color: #f5f9fb;
    width: 100%;
    padding: 32px;
    max-height: fit-content;
  }

  .benefits-package__content {
    align-items: center;
    flex-direction: column-reverse;
    height: auto;
  }

  .benefits-package__img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    text-align: center;
  }

  .benefits-package__info {
    width: 100%;
    height: auto;
    max-height: auto;
  }

  .benefits-package__info__item {
    max-width: 100%;
    width: 100%;
  }
}

@media only screen and (max-width: 431px) {
  .benefits-package__info {
    max-height: fit-content;
  }
}

.outros_servicos__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.outros_servicos__item {
  width: 23%;
  border: 1px solid #efefef;
  border-radius: 4px;
  padding: 12px;
  min-height: 340px;
  position: relative;
}

.outros_servicos__item a {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.ver-mais-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

*:focus {
  outline: 0 !important;
}

.align-text {
  text-align: center;
}

@media screen and (max-width: 769px) {
  .align-text {
    text-align: center;
  }
}

.accordion h3 {
  font-size: 1rem;
}

#floating-row__fixedDiv {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 15px;
  background-color: #cc0000;
  color: white;
  border: none;
  outline: none;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 999 !important;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#floating-row__fixedDiv.show {
  opacity: 1;
}

#floating-row__fixedDiv.show {
  display: flex;
}

.floating-row__fixedButton {
  cursor: pointer;
}

#cnpj__fixedDiv {
  max-width: 250px;
}

.duvidas_frequentes {
  padding: 0 12px;
  background-color: #fff;
  padding-top: 42px;
}

.duvidas_frequentes a {
  color: #cd0000;
}

.accordion__item__header.menu-mobile > header,
.accordion__item__header.menu-mobile > p {
  font-size: 0.9rem;
  color: #fff;
  font-family: SantanderTextRegular;
}

.accordion__item {
  padding-right: 7px;
}

.accordion__item__header {
  border-top: 1px solid #ccc;
  position: relative;
}

.accordion__item__header:first-child {
  position: relative;
  border-top: 0;
}

.accordion__item__header::after,
.accordion__item__header::before {
  height: 24px;
  width: 24px;
  content: '';
  position: absolute;
  transition: 0.2s;
  transform: rotate(180deg);
}

.accordion__item__header::after {
  right: 20px;
  top: 0;
  background: url('https://www.santander.com.br/sites/WPC_Banco/assets/images/sx-pf/ic-small-arrow-top.png');
  cursor: pointer;
}

.accordion__item__header.active::after,
.accordion__item__header.active::before {
  transform: rotate(0);
  top: 2px;
}

.accordion__item__header::before {
  right: 10px;
  top: 2px;
}

.accordion__item__header.active {
  background-color: #fff;
  color: #000;
  transition: 0.4s;
}

.accordion__item__header.menu-mobile {
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.accordion__item__header.menu-mobile > header {
  background-color: transparent;
  border: none;
}

.accordion__item__header.menu-mobile > header > h4 {
  font-size: 18px;
}

.accordion__item__header.menu-mobile::after {
  background: url(http://santander.com.br/sites/WPC_Banco/assets/images/seguro-residencial/arrow_menu_v1.svg)
    no-repeat;
}

.accordion__item__content.resposta ol li {
  margin-bottom: 5px;
}

.accordion__item__content {
  transition: 0.1s linear;
  overflow-y: hidden;
  opacity: 0;
  height: 1rem;
}

.divider_duvidas {
  margin: 1rem 0;
  height: 1px;
  background-color: #ccc;
  position: relative;
  top: -15px;
}

.accordion_active {
  opacity: 1;
  margin: 10px 20px 20px 10px;
  height: auto;
}

.accordion_active p {
  font-size: 0.9rem;
  margin: 0 0 1rem;
  padding: 0 30px 0 0;
}

.accordion_active a {
  margin: unset;
}

.see-more_details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.see-more_header {
  cursor: pointer;
}

.see-more_header:active,
.see-more_header:focus {
  outline: #cc0000;
}

@media screen and (max-width: 768px) {
  .accordion h3 {
    max-width: 290px;
  }
}

.image_banner,
.text_banner {
  width: 50%;
}

@media (max-width: 768px) {
  input {
    width: 90vw;
  }

  #banner-img {
    order: -1;
  }

  #main-title {
    transform: unset;
  }

  .image-block {
    display: flex;
    justify-content: center;
  }
  .image-block img {
    width: 100%;
    object-fit: cover;
  }
}

/* Section Pacotes */
.pacotes {
  margin-top: 80px;
  padding-bottom: 100px;
}

.pacotes__title-text,
.pacotes__subtitle-text {
  font-family: 'Santander Headline', sans-serif;
  color: #222222;
}

.pacotes__title-text {
  font-size: 28px;
  font-weight: 400;
}

.pacotes__subtitle-text {
  font-size: 16px;
  font-weight: 400;
}

/* Carrossel Container */
.pacotes__carroussel-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  overflow: visible !important;
}

/* Carrossel Card */
.carrousel__card {
  border-radius: 4px;
  border: 1px solid rgba(204, 204, 204, 1);
  background-color: rgba(255, 255, 255, 1);
  padding: 16px;
  margin-top: 24px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Carrossel Card Icon */
.carrousel__card-icon {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 10px;
}

.carrousel__card-title {
  color: #ec0000;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Santander Text', sans-serif;
}

.carrousel__card-description {
  color: #222222;
  font-size: 12px;
  font-family: 'Santander Text', sans-serif;
  font-weight: 400;
  line-height: 21px;
  max-width: 300px;
}

.carrousel__card-info-learn-more {
  text-decoration: underline !important;
  background-color: transparent;
  border: none;
  font-size: 12px;
  text-align: start;
  cursor: pointer;
  padding: 0;
}

.carrousel__card-description span {
  font-weight: 700;
}

.carrousel__card-price-text {
  color: #222222;
  font-size: 24px;
  font-family: 'Santander Text', sans-serif;
  font-weight: 700;
}

/* Badge */
.carrousel__card-badge {
  background-color: #739e41;
  padding: 8px;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 20px;
}

.carrousel__card-badge-text {
  color: #fff;
  font-size: 14px;
  font-family: 'Santander Text', sans-serif;
  font-weight: 700;
  margin-bottom: 0px !important;
}

.carrousel__card-info-text {
  color: #444444;
  font-size: 14px;
  font-family: 'Santander Text', sans-serif;
  font-weight: 400;
}

.carrousel__card-info-text-mei {
  color: #444444;
  font-size: 11px;
  font-family: 'Santander Text', sans-serif;
  font-weight: 400;
}

.carrousel__card-info {
  margin-bottom: 12px;
}

.carrousel__card-info a {
  color: #222222;
  font-size: 10px;
  font-family: 'Santander Text', sans-serif;
  font-weight: 400;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.carrousel__card-info button:hover {
  color: #ec0000;
}

/* Card Footer */
.carrousel__card-footer {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  border-top: 1px solid #cccccc;
  width: 90%;
  margin: 0 auto 24px auto;
  padding-top: 16px;
}

.carrousel__card-button {
  background-color: transparent;
  border: none;
  text-decoration: underline;
  color: #222222;
  font-size: 18px;
  font-family: 'Santander Text', sans-serif;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrousel__card-button:hover {
  color: #ec0000;
}

/* Details Section */
.carroussel__details {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    visibility 0s ease 0.3s;
  visibility: hidden;
}

.carroussel__details.is-visible {
  max-height: fit-content;
  /* Ajuste conforme o conteúdo */
  visibility: visible;
  overflow: visible;
  transition: max-height 0.3s ease-in-out;
}

/* Gira o SVG quando o botão está ativo */
.carrousel__card-button.is-active {
  svg {
    transform: rotate(180deg);
  }
}

.carroussel__details-content {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.carrousel__card-divider {
  margin-top: 24px;
  margin-bottom: 24px;
}

.carroussel__details-svg {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carroussel__details-text {
  font-size: 14px;
  font-family: 'Santander Text', sans-serif;
  font-weight: 400;
  color: #444444;
}

.carroussel__details-text span {
  font-weight: 700;
}

.carroussel__details__button {
  background-color: #fff;
  color: #ec0000;
  border: 1px solid #ec0000;
  padding: 16px;
  border-radius: 4px;
  font-size: 18px;
  font-family: 'Santander Text', sans-serif;
  text-decoration: none;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.carroussel__details.is-visible .carrousel__card-button__svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.button-white-outlined:hover {
  background-color: #fde5e5;
  color: #cc0000;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .swiper-slide {
    width: 24% !important;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .pacotes__carroussel-container {
    flex-direction: column;
    align-items: center;
    width: 80%;
    overflow: hidden;
  }

  .pacotes__carroussel__swiper-button-next.swiper-button-next,
  .pacotes__carroussel__swiper-button-prev.swiper-button-prev {
    top: auto;
    color: #222222;
    margin-top: 50px;
    --swiper-navigation-size: 15px;
    width: 60%;
  }

  .pacotes__carroussel__swiper-button-next.swiper-button-next:after,
  .pacotes__carroussel__swiper-button-prev.swiper-button-prev:after {
    border: 1px solid #cccccc;
    padding: 12px 14px;
    border-radius: 50%;
    position: relative;
  }
  .pacotes__carroussel__swiper-button-next.swiper-button-next:after {
    left: 45%;
    bottom: 250px;
  }
  .pacotes__carroussel__swiper-button-prev.swiper-button-prev:after {
    right: 45%;
    bottom: 250px;
  }
}

@media (max-width: 768px) {
  .passo-a-passo__container .row .col-md-3 {
    position: unset;
    padding-right: 0px;
    padding-left: 0px;
    max-width: 540px;
    width: 100%;
  }

  .passo-a-passo__container .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: unset;
    margin: 0;
    padding: 0;
    text-align: -webkit-center;
  }
}

/* Estilo para desktop */
@media (min-width: 768px) {
  .pacotes__container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .pacotes__carroussel-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
  }

  .carrousel__card {
    width: 300px;
  }

  .pacotes__carroussel__swiper-button-next.swiper-button-next,
  .pacotes__carroussel__swiper-button-prev.swiper-button-prev {
    position: relative;
    bottom: 250px !important;
  }

  .pacotes__carroussel__swiper-button-next.swiper-button-next,
  .pacotes__carroussel__swiper-button-prev.swiper-button-prev {
    color: #222222;
    --swiper-navigation-size: 15px !important;
    margin: 10px 40% 0 40%;
    display: none;
  }

  .pacotes__carroussel__swiper-button-next.swiper-button-next:after,
  .pacotes__carroussel__swiper-button-prev.swiper-button-prev:after {
    border: 1px solid #cccccc;
    padding: 24px;
    border-radius: 50%;
    background-color: #fff;
    margin-top: 60px;
  }
}

/* Section FAQ - Duvidas frequentes */
.faq {
  margin-top: 80px;
}
.faq__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
  font-family: SantanderHeadline, sans-serif;
  font-weight: 400;
  color: #222222;
}
/* FAQ Item */
.faq__item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 12px;
}
.faq__item__question {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  cursor: pointer;
  font-family: SantanderTextRegular, sans-serif;
  gap: 12px;
}
.faq__item__question span {
  width: 80%;
  display: flex;
}

.faq__item__icon {
  transition: transform 0.3s ease;
  margin-right: 24px;
  width: 10%;
}
.faq__item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
}
.faq__item__answer p,
.faq__item__answer li,
.faq__item__answer a {
  font-weight: 400;
  font-family: SantanderTextRegular, sans-serif;
  color: #444444;
}
/* When expanded */
.faq__item__question[aria-expanded='true'] .faq__item__icon {
  transform: rotate(180deg);
}
.faq__item__question[aria-expanded='true'] + .faq__item__answer {
  max-height: fit-content;
  /* Ajuste o valor conforme necessário */
}
.hidden-faq {
  display: none;
}

#faq-more-btn {
  margin: 16px auto;
  display: flex;
}

@media screen and (max-width: 768px) {
  #faq-more-btn {
    width: 100%;
  }
  .faq,
  .disclaimer-container {
    max-width: 540px;
    width: 100%;
  }
}
/* Media Queries - Larger screens */
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 32px;
  }
  .faq__item__question {
    font-size: 20px;
  }
  .faq__item__icon {
    transition: transform 0.3s ease;
    margin-right: 0;
  }
  .faq__item__question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: SantanderTextRegular, sans-serif;
  }
}

.accent-button:hover {
  cursor: pointer;
}

.accent-button:focus,
.accent-button:active {
  border-color: #cc0000;
}

.disclaimer-container {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 24px;
}

.disclaimer__text {
  font-size: 14px;
  font-family: 'Santander Text', sans-serif;
  font-weight: 400;
  color: #444444;
}
